home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / tests / pdevtest / pdevInt.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-02-01  |  820 b   |  28 lines

  1. /*
  2.  * pdevInt.h --
  3.  *
  4.  *    Declarations for the pdevtest program
  5.  *
  6.  * Copyright 1989 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  * $Header: /sprite/lib/forms/RCS/proto.h,v 1.2 89/01/07 04:12:44 rab Exp $ SPRITE (Berkeley)
  16.  */
  17.  
  18. #ifndef _PDEVINT
  19. #define _PDEVINT
  20.  
  21. #define MAX_SIZE    (32 * 1024)
  22.  
  23. extern char *pdev;    /* Name of the pseudo-device file */
  24. extern Boolean selectP;    /* True if exercising select() */
  25.  
  26. #endif /* _PDEVINT */
  27.  
  28.